From 4df7e8e499ef8e3c1794b24d3a6dfc9d6f19bb02 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 24 Feb 2006 08:28:04 +0100 Subject: [PATCH] This patch allows for compilation with C89 era compilers, by removing the trailing comma from an enum, which was not part of the C89 spec. Signed-off-by: Bruce Rogers --- xen/include/public/io/xs_wire.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/public/io/xs_wire.h b/xen/include/public/io/xs_wire.h index 65fe590600..d8ae8ea11d 100644 --- a/xen/include/public/io/xs_wire.h +++ b/xen/include/public/io/xs_wire.h @@ -54,7 +54,7 @@ static struct xsd_errors xsd_errors[] __attribute__((unused)) = { XSD_ERROR(EROFS), XSD_ERROR(EBUSY), XSD_ERROR(EAGAIN), - XSD_ERROR(EISCONN), + XSD_ERROR(EISCONN) }; struct xsd_sockmsg -- 2.30.2